No Assertions ^^^^^ **Definition:** * Tests that have no assertions and require the manual verification of log outputs **Also Known As:** * Assertionless Test **Code Example:** .. code-block:: java IResult result = format.execute(); System.out.println(result.size()); Iterator iter = result.iterator(); while (iter.hasNext()) { IResult r = (IResult) iter.next(); System.out.println(r.getMessage()); } **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `Bad tests, good tests `_ :octicon:`file-code;1em` :octicon:`comment-discussion;1em` :octicon:`sync;1em` * `Categorising Test Smells `_ :octicon:`graph;1em` * `Improving Student Testing Practices through a Lightweight Checklist Intervention. `_ * `Smells of Testing (signs your tests are bad) `_ :octicon:`sync;1em`